type internal/runtime/maps.table

37 uses

	internal/runtime/maps (current package)
		map.go#L314: 	directory := make([]*table, dirSize)
		map.go#L341: func (m *Map) directoryAt(i uintptr) *table {
		map.go#L342: 	return *(**table)(unsafe.Pointer(uintptr(m.dirPtr) + goarch.PtrSize*i))
		map.go#L345: func (m *Map) directorySet(i uintptr, nt *table) {
		map.go#L346: 	*(**table)(unsafe.Pointer(uintptr(m.dirPtr) + goarch.PtrSize*i)) = nt
		map.go#L349: func (m *Map) replaceTable(nt *table) {
		map.go#L359: func (m *Map) installTableSplit(old, left, right *table) {
		map.go#L363: 		newDir := make([]*table, m.dirLen*2)
		map.go#L632: 	directory := make([]*table, 1)
		map.go#L744: 		var lastTab *table
		map.go#L802: 		oldDir := unsafe.Slice((**table)(m.dirPtr), m.dirLen)
		map.go#L803: 		newDir := make([]*table, m.dirLen)
		table.go#L34: type table struct {
		table.go#L74: func newTable(typ *abi.SwissMapType, capacity uint64, index int, localDepth uint8) *table {
		table.go#L79: 	t := &table{
		table.go#L102: func (t *table) reset(typ *abi.SwissMapType, capacity uint16) {
		table.go#L116: func (t *table) maxGrowthLeft() uint16 {
		table.go#L139: func (t *table) Used() uint64 {
		table.go#L145: func (t *table) Get(typ *abi.SwissMapType, m *Map, key unsafe.Pointer) (unsafe.Pointer, bool) {
		table.go#L166: func (t *table) getWithKey(typ *abi.SwissMapType, hash uintptr, key unsafe.Pointer) (unsafe.Pointer, unsafe.Pointer, bool) {
		table.go#L226: func (t *table) getWithoutKey(typ *abi.SwissMapType, hash uintptr, key unsafe.Pointer) (unsafe.Pointer, bool) {
		table.go#L266: func (t *table) PutSlot(typ *abi.SwissMapType, m *Map, hash uintptr, key unsafe.Pointer) (unsafe.Pointer, bool) {
		table.go#L381: func (t *table) uncheckedPutSlot(typ *abi.SwissMapType, hash uintptr, key, elem unsafe.Pointer) {
		table.go#L421: func (t *table) Delete(typ *abi.SwissMapType, m *Map, hash uintptr, key unsafe.Pointer) bool {
		table.go#L508: func (t *table) pruneTombstones(typ *abi.SwissMapType, m *Map) {
		table.go#L593: func (t *table) tombstones() uint16 {
		table.go#L598: func (t *table) Clear(typ *abi.SwissMapType) {
		table.go#L639: 	tab *table
		table.go#L1118: func (t *table) rehash(typ *abi.SwissMapType, m *Map) {
		table.go#L1152: func (t *table) split(typ *abi.SwissMapType, m *Map) {
		table.go#L1182: 			var newTable *table
		table.go#L1200: func (t *table) grow(typ *abi.SwissMapType, m *Map, newCapacity uint16) {
		table.go#L1265: func (t *table) clone(typ *abi.SwissMapType) *table {
		table.go#L1267: 	t2 := new(table)
		table_debug.go#L15: func (t *table) checkInvariants(typ *abi.SwissMapType, m *Map) {
		table_debug.go#L84: func (t *table) Print(typ *abi.SwissMapType, m *Map) {